Fix some typos (found by codespell) (#160)
authorStefan Weil <sw@weilnetz.de>
Thu, 11 Jul 2019 18:04:34 +0000 (20:04 +0200)
committerSteven G. Johnson <stevenj@alum.mit.edu>
Thu, 11 Jul 2019 18:04:34 +0000 (14:04 -0400)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
bench/icu.c
bench/unistring.c
data/charwidths.jl

index 3ac3514158c4f88e5acb92272e8c7d123abc2c60..a162c32da8d3ad6ca4e5a8f44a1f8730b6b5fb46 100644 (file)
@@ -41,7 +41,7 @@ int main(int argc, char **argv)
 
                  /* ICU's insane normalization API requires you to
                         know the size of the destination buffer in advance,
-                        or alternatively to repeatly try normalizing and
+                        or alternatively to repeatedly try normalizing and
                         double the buffer size until it succeeds.  Here, I just
                         allocate a huge destination buffer to avoid the issue. */
                  UChar *udest = (UChar*) malloc(10*ulen * sizeof(UChar));
index 2cc5ce8d9905c29f63655811b1cbe2fdfe424612..8a97f3c701ef751b9f194d8b651314d495f6b5a8 100644 (file)
@@ -1,4 +1,4 @@
-/* comparitive benchmark of GNU libunistring */
+/* comparative benchmark of GNU libunistring */
 
 #include <stdio.h>
 #include <stdlib.h>
index 9b3d5087550958dbca84bfeab7634d67128b2c19..3652b2ebb78da0c7580e38d6a525ab31e75fdaf4 100644 (file)
@@ -52,7 +52,7 @@ const UTF8PROC_CATEGORY_CO = 29
 #############################################################################
 # Use a default width of 1 for all character categories that are
 # letter/symbol/number-like, as well as for unassigned/private-use chars.
-# This can be overriden by UAX 11
+# This can be overridden by UAX 11
 # below, but provides a useful nonzero fallback for new codepoints when
 # a new Unicode version has been released but Unifont hasn't been updated yet.